home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / s_to_z / wmapdemo / data.z / LDIALOG.PAS < prev    next >
Pascal/Delphi Source File  |  1996-03-09  |  989b  |  50 lines

  1. unit Ldialog;
  2.  
  3. interface
  4.  
  5. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
  6.   StdCtrls, ExtCtrls;
  7.  
  8. type
  9.   TLineDlg = class(TForm)
  10.     OKBtn: TBitBtn;
  11.     CancelBtn: TBitBtn;
  12.     HelpBtn: TBitBtn;
  13.     Bevel1: TBevel;
  14.     Lat: TEdit;
  15.     Label1: TLabel;
  16.     Label2: TLabel;
  17.     Long: TEdit;
  18.     Label5: TLabel;
  19.     Label6: TLabel;
  20.     Label3: TLabel;
  21.     LatTo: TEdit;
  22.     Label4: TLabel;
  23.     LongTo: TEdit;
  24.     procedure OKBtnClick(Sender: TObject);
  25.     procedure FormClose(Sender: TObject; var Action: TCloseAction);
  26.   private
  27.     { Private declarations }
  28.   public
  29.     { Public declarations }
  30.   end;
  31.  
  32. var
  33.   LineDlg: TLineDlg;
  34.  
  35. implementation
  36.  
  37. {$R *.DFM}
  38. uses mapmain;
  39. procedure TLineDlg.OKBtnClick(Sender: TObject);
  40. begin
  41.   Mapform.WorldMap1.AddLine(lat.text,long.text,latto.text,longto.text,clBlue,2,0);
  42. end;
  43.  
  44. procedure TLineDlg.FormClose(Sender: TObject; var Action: TCloseAction);
  45. begin
  46.  action := caFree;
  47. end;
  48.  
  49. end.
  50.